home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / text / swedish.lha / Install next >
Text File  |  1995-08-16  |  586b  |  29 lines

  1. ; Installation script for an AlphaSpell dictionary
  2.  
  3. (transcript "Installing AlphaSpell ...")
  4.  
  5. (set destpath
  6.     (askdir
  7.         (prompt "Install the Dictionary where?")
  8.         (help @askdir-help)
  9.         (default "Work:")
  10.     )
  11. )
  12.  
  13. (copyfiles
  14.     (prompt "Copying AlphaSpell Dictionary")
  15.     (help @copyfiles-help)
  16.     (source "Dictionary/")
  17.     (dest destpath)
  18.     (confirm)
  19.     (all)
  20. )
  21.  
  22. (message
  23.     "If you use XES, please update your dictionary list with the "
  24.     "requester that XES has for this purpose. You need at least XES "
  25.     "2.1 to use this requester."
  26. )
  27.  
  28. (exit (quiet))
  29.